home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
REWIND.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
11 lines
/*
** rewind a stream file
*/
#define FILE int
extern fseek2();
rewind(stream) FILE *stream; {
fseek2(stream, 0, 0);
fseek2(stream, 0, 3);
}